/*global style*/
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 1;
    background: transparent;
  }

  .fixedNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(0deg, #325488, #325488);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 0 .5rem 0;
}

.fixedNav  .navLinks li {
    transition: all 0.3s ease-in;
}

 .fixedNav .navLinks  li a {
    color: #fff;
}

.fixedNav .navCenter {
    margin-top: -1.3rem;
}

.navCenter {
    position: relative;
    width: 90%;
    margin: .1px auto;
}

.navHeader {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   padding-top: 15px;
}

.fixedNav .navHeader .logoBox {
    position: relative;
}

.fixedNav .navHeader .logoBox h1 {
    color: #fff;
}

.navHeader .logoBox h1 {
    font-size: 2rem;
    color:#325488;
    padding-left: 12px;
}

.iconBar {
    background-color: #325488;
    border: none;
    padding: 5px 8px;
    color: white;
    cursor: pointer;
    outline: none;
}

.iconBar i {
    font-size: 1.2rem;
}

.navLinks {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background-image: url('../images/hero.svg');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    margin-top: -7rem;
}

.heroCenter {
    width: 90%;
    max-width: 1170px;
    margin: .1px auto;
    margin-top: 1rem;
    display: grid;
    align-items: center;
    padding: 0px 10px;
    z-index: 99;
  }

  .heroInfo h1 {
      font-size: 2.8rem;
      text-transform: capitalize;
      color: #325488;
      line-height: 4rem;
      letter-spacing: 3.5px;
      margin-bottom: 1.5rem;
  }

  .heroInfo p {
      color: #325488;
      font-size: 1rem;
      margin-bottom: 2rem;
      text-align: justify;
  }

  .heroInfo .btn {
    display: inline-block;
    position: relative;
    padding: 18px 30px;
    background: transparent;
    border: 1px solid #325488;
    border-radius: 5px;
    color: #325488;
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 1px;
}
.heroInfo .btn:hover{
    border-color: transparent;
    color: #fff;
}

.heroInfo .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background: linear-gradient(to right, #325488, #28446ed5 );
    z-index: -1;
    transition: transform .5s;
    transform-origin: right;
    transform: scaleX(0);
    border-radius: 5px;
}

.heroInfo .btn:hover::before {
    transition: transform .5s;
    transform-origin: left;
    transform: scaleX(1);
}

.heroImg {
  display: none;
}

/* hero media query  */

/*styles for desktop version*/
@media screen and (min-width:1200px) {
    .fixedNav .navCenter {
        margin-top: -0.8rem;
    }
   
    .navLinks {
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        column-gap: 40px;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    .navCenter {
        padding-top: 1rem;
    }

    .navLinks li {
        transition: all 0.3s ease-in;
    }

      .navLinks  li a {
        position: relative;
        color: #325488;
        font-size: 1.2rem;
        text-transform: capitalize;
    }

    .navLinks li:hover  {
        transform: translateY(5px);
    }

    .navLinks li:last-child a{
        background: #325488;
        color: white;
        padding: 8px 25px;
    }

    .navHeader {
        padding-top: 0px;
     }
    
    .navHeader .logoBox h1 {
        font-size: 2rem;
        padding-left: 35px;
    }

    .iconBar{
        display: none;
    }

    .hero::before {
        background-size: contain;
        height: 100%;
      }
      .heroCenter {
        display: grid;
        grid-template-columns: 2fr 1fr;
        column-gap: 5rem;
      }

    .heroInfo h1 {
        font-size: 4.3rem;
        line-height: 5.4rem;
        letter-spacing: 1px;
     }

    .heroInfo p {
        font-size: 1.2rem;
        line-height: 2.2rem;
        margin-bottom: 1.7rem;
    }

    .heroImg {
        margin-top: -40px;
         height: 350px;
          display: block;
          justify-self: center;
      }

      .heroImg {
        display: block;
      }
}



/* section one style  */
.sectionOne {
    min-height: 100vh;
    position: relative;
}

.sectionOneCenter {
    width: 90%;
    margin: .1px auto;
    padding: 30px 15px;
}

.oneCardContainer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.oneDetails h2 {
    position: relative;
    font-size: 1.4em;
    color: #325488;
}

.oneDetails h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    width: 60px;
    height: 2px;
    background: #fb8d03;
}

.cardBody {
    position: relative;
    padding: 40px 15px;
    width: 300px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.6s ease-in;
    border: transparent;
    transition: all 0.3s ease-in;
}

.cardBody:hover {
    transform: translateY(13px);
}


.cardIcon {
    position: relative;
    width:50px;
    height: 50px;
    padding: 20px 8px;
    display: grid;
    place-content: center;
    border: 1.5px solid #fb8d03;
    border-radius: 50%;
}

.cardIcon img {
    max-width: 100%;
    object-fit: cover;
}

.cardBody h3 {
    color: #325488;
    font-size: 1.2em;
    padding: 10px 0;
}

.cardBody p {
    line-height: 25px;
    color: #333;
    opacity: 0.8;
}

/* media query for section 1  */
@media screen and (min-width:1200px) {
    
.sectionOneCenter {
    padding: 80px 28px;
}

.oneCardContainer {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    column-gap: 25px;
}

.oneDetails h2 {
    font-size: 2em;
    color: #325488;
    padding-bottom:10px;
    text-align: center;
    letter-spacing: 5px;
}

.oneDetails h2::before {
   display: none;
}

}

/* sectionTwo styles  */
.sectionTwo {
    position: relative;
    min-height: 100vh;
}

.sectionTwoCenter {
    width: 90%;
    margin: .1px auto;
    padding: 30px 15px;
}


.twoDetails h2 {
    position: relative;
    font-size: 1.4em;
    color: #325488;
}

.twoDetails h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    width: 60px;
    height: 2px;
    background: #fb8d03;
}


.about {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-rows: 350px 1fr;
}
.about1 {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-rows: 1fr 350px;
}

.aboutImage img,
.aboutImage1 img {
    max-width: 100%;
    object-fit: cover;
}


.aboutDetails p , .aboutDetails1 p{
    line-height: 30px;
    color: #325488;
}

.aboutDetails1 button {
    position: relative;
    padding: 15px 20px;
    border: none;
    background-color: #325488;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in;
    cursor: pointer;
    font-size: 1em;
    margin-top: 2rem;
}

.aboutDetails1 button:hover {
    transform: translateY(-7px);
}


/* media query for section 2  */
@media screen and (min-width: 1200px) {
    .sectionTwoCenter {
        padding: 80px 28px;
    }    

    .twoDetails h2 {
        font-size: 2em;
        color: #325488;
        padding-bottom:10px;
        text-align: center;
        letter-spacing: 5px;
    }
    
    .twoDetails h2::before {
       display: none;
    }

    .about {
        margin-top: 10px;
        display: grid;
        grid-template-columns: 550px 1fr;
        grid-template-rows: auto;
        column-gap: 20px;
    }

    .about1 {
        margin-top: 4rem;
        display: grid;
        grid-template-columns: 550px 1fr;
        grid-template-rows: auto;
        column-gap: 20px;
    }

    .aboutDetails {
        display: grid;
        place-content: center;
    }

}


/* section three styles  */
.sectionThree {
    position: relative;
    min-height: 100vh;
}

.sectionThreeCenter {
    width: 90%;
    margin: .1px auto;
    padding: 30px 15px;
}


.threeDetails h2 {
    position: relative;
    font-size: 1.4em;
    color: #325488;
}

.threeDetails h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #fb8d03;
}

.threeDetails p {
    color: #325488;
    line-height: 30px;
    padding: 10px 0;
}

.testimonial {
    margin-top: 40px;
}

.client {
    padding: 20px 10px;
    background: #fb8b0313 ;
    border-bottom-right-radius:35px;
    border-top-left-radius:35px;
}

.clientImg {
    height: 100px;
    width: 100px;
}

.clientImg img {
    max-width: 100%;
    object-fit: cover;
}

.clientDetails {
    padding: 0 15px;
}

.clientDetails h3 {
    color: #325488;
    padding: 10px 0;
}

.clientDetails p {
    color: #333;
    opacity: 0.8;
}

/* section three media query */

@media screen and (min-width:1200px) {
    .sectionThreeCenter {
        padding: 80px 28px;
    }    

    .threeDetails h2 {
        font-size: 2em;
        color: #325488;
        padding-bottom:10px;
        text-align: center;
        letter-spacing: 5px;
    }
    
    .threeDetails h2::before {
       display: none;
    }

    .threeDetails p {
        text-align: center;
    }

    .owl-carousel .client {
        margin: 0px 20px;
    }
   
}

/* section four styles  */
.sectionFour {
    position: relative;
    min-height: 30vh;
    background: linear-gradient(95deg, #325488d0, #325488);
}

.sectionFourCenter {
    width: 90%;
    margin: .1px auto;
    padding: 30px 15px;
}


.fourDetails h2 {
    position: relative;
    font-size: 1.4em;
    color: white;
    font-size: 1.3em;
}

.fourDetails p {
    line-height: 20px;
    color: white;
    opacity: 0.8;
}

.cta {
    margin-top: 2.5rem;
}

.cta a {
    padding: 10px 15px;
    color: #325488;
    background: #bfcedf;
    border-radius: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    transition:all 0.3s ease-in ;
}


.cta a:hover {
    background: white;
}

/* media query for cta  */
@media screen and (min-width:1200px) {
    .sectionFourCenter {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .fourDetails h2 {
        font-size: 2em;
    }
    
    .fourDetails p {
        line-height: 20px;
        padding: 20px 0;
        font-size: 1.2em;
    }

    
    .cta {
        margin-top: unset;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cta a {
        padding: 15px 25px;
        font-size: 1.2em;
    }
}


/* our team styles  */
.ourTeam {
    position: relative;
    min-height: 100vh;
}

.ourTeamCenter {
    width: 90%;
    margin: .1px auto;
    padding: 30px 15px;
}


.ourTeamDetails h2 {
    position: relative;
    font-size: 1.4em;
    color: #325488;
}

.ourTeamDetails h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #fb8d03;
}

.ourTeamDetails p {
    color: #325488;
    line-height: 30px;
    padding: 10px 0;
}

.ourTeamContent {
    margin-top: 40px;
}

.teamMembers {
    padding: 20px 10px;
    background: #fb8b0313 ;
    border-bottom-right-radius:35px;
    border-top-left-radius:35px;
}

.teamImg {
    height: 100px;
    width: 100px;
}

.teamImg img {
    max-width: 100%;
    object-fit: cover;
}

.teamDetails {
    padding: 0 15px;
}

.teamDetails h3 {
    color: #325488;
    padding: 10px 0;
}

.teamDetails p {
    color: #333;
    opacity: 0.8;
}

/* section three media query */

@media screen and (min-width:1200px) {
    .ourTeamCenter {
        padding: 80px 28px 20px;
    }    

    .ourTeamDetails h2 {
        font-size: 2em;
        color: #325488;
        padding-bottom:10px;
        text-align: center;
        letter-spacing: 5px;
    }
    
    .ourTeamDetails h2::before {
       display: none;
    }

    .ourTeamDetails p {
        text-align: center;
    }

    .owl-carousel .teamMembers {
        margin: 0px 20px;
    }   
}


/* section five styles  */
.sectionFive {
    position: relative;
    min-height: 40vh;
}

.sectionFiveCenter {
    width: 90%;
    margin: .1px auto;
    padding: 30px 15px;
}


.fiveDetails h2 {
    position: relative;
    font-size: 1.4em;
    color: #325488;
    font-size: 1.3em;
}


.fiveDetails h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #fb8d03;
}

.clientPartners {
    margin-top: 3rem;
}

.partnersImg {
    width: 150px;
    height: 70px;
    margin: .1px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partnersImg img {
    max-width: 100%;
    object-fit: cover;
}

.partnersImg:nth-child(2) img {
    object-fit: contain;
}

/* media query for section five  */
@media screen and (min-width:1200px) {
    .sectionFiveCenter {
        padding: 80px 28px;
    }    

    .fiveDetails h2 {
        font-size: 2em;
        color: #325488;
        padding-bottom:10px;
        text-align: center;
        letter-spacing: 5px;
    }
    
    .fiveDetails h2::before {
       display: none;
    }

}


/* footer styles  */
.footer {
    min-height: 100vh;
    position: relative;
    padding-bottom:60px;
}

.footerCenter {
    width: 90%;
    margin: .1px auto;
    padding: 30px 15px;
}

.footerContent {
    display: grid;
    grid-template-rows: repeat(4, auto);
    row-gap: 30px;
}

.companyDesc h2 {
    font-size: 1.6em;
    color: #325488;
}

.companyDesc p {
    padding: 15px 0;
    color: #333;
    opacity: 0.8;
    line-height: 30px;
}

.socialLinks {
    padding: 20px 0 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.socialLinks .socialIcon {
    display: grid;
    place-content: center;
    border: 1px solid #fb8d03;
    background: transparent;
    padding: 8px 8px;
    border-top-right-radius: 15px;
    outline: none;
    cursor: pointer;
    transition: all 0.4s ease-in;
}

.socialLinks .socialIcon:hover {
    background: #325488;
    border: transparent;
}

.socialLinks .socialIcon i {
    font-size: 1.7em;
    color: #325488;
}

.socialLinks .socialIcon:hover i {
    color: #fff;
} 

.footerSecond h3,
.footerThird h3,
.footerFourth h3 {
    font-size: 1.3em;
    color: #325488;
}

.footerUl {
    padding: 10px 0 0;
}

.footerUl li {
    padding: 15px 0 0;
}

.footerUl li a {
    color: #333;
    opacity: 0.8;
}

.companyInfo li {
    line-height: 30px;
    color: #333;
    opacity: 0.8;
}

.copyright {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 0 25px;
}

.copyrightText {
    line-height: 30px;
    text-align: center;
    color: #333;
    opacity: 0.8;
    font-size: 0.9em;
}


/* media query for desktop  */
@media screen and (min-width:1200px) {
    .footer {
        padding-bottom:0px;
    }
    .footerCenter {
        padding: 40px 28px 0;
    }
    
    .footerContent {
        display: grid;
        grid-template-columns: repeat(4, auto);
        grid-template-rows: auto;
        column-gap: 50px;
    }
    
    .copyright {
        position: absolute;
        bottom: 50px;
        left: 0;
        width: 100%;
    }

    .copyrightText {
        text-align: center;
        font-size: 1em;
    }
       
}


/* mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: #fff;
    z-index: -99;
    visibility: hidden;
    transform: translateX(-500px);
    transition: all 0.6s ease-in-out;
}

.show-mobileNav {
    transform: translateX(0);
    z-index: 999;
    visibility: visible;
}


.mobil-navCenter {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 15px;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
}

.mobile-header h3 {
    color: #325488;
    font-size: 1.2em;
}

.mobileCancel i {
    font-size: 1.25em;
    color: #325488;
    cursor: pointer;
}

.first-mobileNav {
    margin: 30px 0;
}

.first-mobileNav li {
    padding: 20px 0;
}

.first-mobileNav li a {
    color: #325488;
    font-size: 1.1em;
    letter-spacing: 10px;
}

.mobileSocial {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}

.mobileSocial .mobileIcon {
    display: grid;
    place-content: center;
    border: 1px solid #fb8d03;
    background: transparent;
    padding: 8px 8px;
    border-top-right-radius: 15px;
    outline: none;
    cursor: pointer;
    transition: all 0.4s ease-in;
}

.mobileSocial .mobileIcon:hover {
    background: #325488;
    border: transparent;
}

.mobileSocial .mobileIcon i {
    font-size: 1.7em;
    color: #325488;
}

.mobileSocial .mobileIcon:hover i {
    color: #fff;
} 
/* end of mobile nav  */


/*Arrow Top*/
.top{
    position: fixed;
    right: .3rem;
    bottom: 2.2rem;
    background-color: #325488;
    padding: .5rem;
    border-radius: 1rem;
    visibility: hidden;
    animation: bounce 2s ease-in-out .2s infinite alternate;
}

.top i {
    font-size: 1.5rem;
    color: white;
}

@keyframes bounce {
    25% {
        transform: scale(.8);
    }
    75% {
        transform: scale(1);
    }
}

.showTop {
    visibility: visible;
}
/*End of Arrow*/


/* loader  */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #fff;
    z-index: 999;
    visibility: visible;
}

.hidePreloader {
    z-index: -999;
    visibility: hidden;
}

.loadContent  {
    display: grid;
    place-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #bfcedfa6;
    border: 3px solid #faf5f5;
    border-top:3px solid #fb8d03;
    border-bottom:3px solid #fb8d03;
    animation: spin .8s linear infinite ;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loadContent h3 {
    color: #325488;
    font-weight: 600;
    font-size: 0.9em;
}
/* end of loader */

